Excavator: Upgrades Baseline to the latest version#133
Merged
bulldozer-bot[bot] merged 2 commits intodevelopfrom Dec 6, 2022
Merged
Excavator: Upgrades Baseline to the latest version#133bulldozer-bot[bot] merged 2 commits intodevelopfrom
bulldozer-bot[bot] merged 2 commits intodevelopfrom
Conversation
d7ca238 to
c1b1a79
Compare
b97af8a to
8048376
Compare
8048376 to
a1c1c6c
Compare
0413e9a to
6d95e58
Compare
6d95e58 to
bc7130b
Compare
bc7130b to
5cf2f12
Compare
db32261 to
ca40e26
Compare
35c0587 to
1355828
Compare
1355828 to
ae48ea1
Compare
ae48ea1 to
fd57883
Compare
e71293c to
cee93c3
Compare
c806b98 to
01cb0a6
Compare
7a2739e to
95f2b89
Compare
3f96fe5 to
615ca5c
Compare
5f0db0c to
1aa8e08
Compare
e991976 to
c7c327f
Compare
346e11e to
5aeb29f
Compare
5aeb29f to
835c3af
Compare
835c3af to
211d2bf
Compare
211d2bf to
db8729d
Compare
carterkozak
approved these changes
Dec 6, 2022
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
excavator is a bot for automating changes across repositories.
Changes produced by the roomba/latest-baseline-oss check.
Release Notes
4.67.0
Automated release, no documented user facing changes
4.68.0
StrictUnusedVariableno longer flags parameters of default methods.4.69.0
4.70.0
Automated release, no documented user facing changes
4.71.0
Automated release, no documented user facing changes
4.72.0
Automated release, no documented user facing changes
4.73.0
4.74.0
No documented user facing changes
4.75.0
4.76.0
4.77.0
4.78.0
IllegalSafeLoggingArgumentcheck4.79.0
4.80.0
4.81.0
4.82.0
Automated release, no documented user facing changes
4.83.0
4.84.0
4.85.0
4.86.0
4.87.0
4.88.0
4.89.0
4.90.0
4.91.0
SerializationUtilsmatcher4.92.0
4.93.0
4.94.0
4.95.0
4.96.0
4.97.0
4.98.0
4.99.0
4.100.0
4.101.0
Collection<@Safe String>4.102.0
com.palantir.baseline-circleciplugin so that compilation failures are once again parsed as XML and can be surfaced at the top of CircleCI builds.4.103.0
4.104.0
4.105.0
4.106.0
4.107.0
Use non-deprecated isSuppressed methods
4.108.0
4.109.0
ImmutablesReferenceEqualitycheck that checks for comparison of Immutables values using reference equality.4.110.0
4.111.0
4.112.0
SafeLoggingPropagationerror-prone check propages log-safety annotations from getters and superclasses/superinterfaces to the type level4.113.0
4.114.0
4.115.0
4.116.0
Automated release, no documented user facing changes
4.117.0
SafeLoggingPropagationcheck and automated fixes:1. Method return statements are analyzed to determine safety of unmarked methods
2. Types are annotated based on the safety of their
toStringmethod, which is a reasonable heuristic for value types that may be logged.4.118.0
4.119.0
4.120.0
4.121.0
4.122.0
NarrowCalculation4.123.0
4.124.0
4.125.0
4.126.0
4.127.0
4.128.0
4.129.0
Automated release, no documented user facing changes
4.130.0
StackOverflowErrors do not occur4.131.0
4.132.0
4.133.0
4.134.0
4.135.0
4.136.0
LazilyConfiguredMappingthat was extracted out to gradle-utils.4.137.0
4.138.0
4.139.0
4.140.0
AvoidNewHashMapIntto warn on uses ofnew HashSet(int).4.141.0
4.142.0
4.143.0
4.144.0
4.145.0
4.146.0
Automated release, no documented user facing changes
4.147.0
Automated release, no documented user facing changes
4.148.0
4.149.0
com.palantir.baseline-java-versionsplugin can now setjavaVersions { distributionTarget = '17_PREVIEW' }to opt-in to Java's--enable-previewflag at compile time.4.150.0
BaselineModuleJvmArgsplugin to once again work as intended in multi-project builds4.151.0
--enable-previewis used4.152.0
Related to google/error-prone issues 632
Adds a
DefaultLocalecheck that replaces uses ofString.toLowerCase()andString.toUpperCase()with the overloads that take aLocale, usingLocale.ROOT.4.153.0
4.154.0
4.155.0
Automated release, no documented user facing changes
4.156.0
4.157.0
junit-reportsplugin.4.158.0
checkUnusedDependenciestasks added bybaseline-exact-dependenciescompatible with Gradle's configure-on-demand feature.4.159.0
There is a certain class of very problematic cases whereby if you have
a method such as the following:
<br>myJerseyResource.register(/* this is of type Object */ object);<br>Then if you supply a resource which includes any
javax.ws.rsannotations on it, then those will not be registered if your Jersey
version is 3.x or later (and you'll only find this out at runtime).
The opposite is also true if you try to supply resources annotated
with
jakarta.ws.rsto Jersey 2.x.To address this, this commit attempts to add an errorprone check
which lets implementors add an annotation
@ForbidJavaxto methodswhich have been knowingly migrated to Jakarta EE9 and cannot
accept legacy javax types.
4.160.0
4.161.0
4.162.0
+ support setting preview on a project-by-project basis.
+ Fixes #2340
+ fails more elegantly if javaVersions is set on not-the-root.
4.163.0
4.164.0
CyclomaticComplexitycheck is now configured withswitchBlockAsSingleDecisionPoint.4.165.0
com.palantir.baseline-null-awaywhich registers theNullAwaycheck atWARNING. Projects which fail on warnings will require this to pass pre-merge.4.166.0
Automated release, no documented user facing changes
4.167.0
Automated release, no documented user facing changes
4.168.0
4.169.0
4.170.0
4.171.0
com.palantir.baseline-null-awayno longer enables theCheckOptionalEmptinesschecker by default.4.172.0
Automated release, no documented user facing changes
4.173.0
4.174.0
4.175.0
4.176.0
4.177.0
4.178.0
4.179.0
build()with the more descriptivebuildOrThrow(), howeverbuildKeepingLast()may be the original intent in some cases.4.180.0
4.181.0
4.182.0
4.183.0
Automated release, no documented user facing changes
To enable or disable this check, please contact the maintainers of Excavator.